home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / callback.001 / callback~ / callback / lib / dest / setmode.c < prev    next >
C/C++ Source or Header  |  1996-07-18  |  263b  |  16 lines

  1.  
  2. #include "dest.p"
  3.  
  4. void set_cbmode(MODE_ mode)
  5. {                        /* set the destinationfile */
  6.     destination[ndestinations - 1].mode = mode;
  7.     destination[ndestinations - 1].phonenr =
  8.     xstrdup
  9.     (
  10.         mode == direct_mode ?
  11.         "dial-in"
  12.         :
  13.         "ask cb-number"
  14.     );
  15. }
  16.